home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
13316
/
13316.xpi
/
content
/
firefoxOverlay.xul
< prev
next >
Wrap
Extensible Markup Language
|
2009-07-27
|
2KB
|
51 lines
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (C) 2009 Norman Solomon
- e-mail: historytree.addon@yahoo.com
-
- The contents of this file are subject to the Mozilla Public License Version
- 1.1 (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
-
- Software distributed under the License is distributed on an "AS IS" basis,
- WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- for the specific language governing rights and limitations under the License.
-->
<!-- Namespaces used -->
<overlay id="historyTree-overlay" xmlns:html="http://www.w3.org/1999/xhtml"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<!-- Import Firefox overlay JS file -->
<script type="application/x-javascript" src="firefoxOverlay.js"/>
<!-- Add Firefox Tools menu item -->
<menupopup id="menu_ToolsPopup">
<menuitem id="mnuOpenHistTree"
label="History Tree..."
insertafter="devToolsSeparator"
oncommand="historyTree.showSessionHistoryExtensionWindow();"/>
</menupopup>
<!-- Add Firefox Toolbar button -->
<toolbarpalette id="BrowserToolbarPalette">
<toolbarbutton id="btnOpenHistTree"
label="History Tree"
image="chrome://historyTree/content/images/toolbarButton.gif"
tooltiptext="Open history tree window"
oncommand="historyTree.showSessionHistoryExtensionWindow()"
class="toolbarbutton-1 chromeclass-toolbar-additional"/>
</toolbarpalette>
<!-- Add status-bar panel containing hidden canvas -->
<statusbar id="status-bar">
<statusbarpanel id="panel" class="statusbarpanel-iconic">
<vbox flex="1">
<html:canvas id="testCanvas" style="display: none">
</html:canvas>
</vbox>
</statusbarpanel>
</statusbar>
</overlay>